home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_03 / allison / xassert.c < prev   
C/C++ Source or Header  |  1994-01-05  |  292b  |  15 lines

  1.  
  2. LISTING 6 - The __assert support function
  3. /* xassert.c */
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6.  
  7. void __assert(char *cond, char *fname, long lineno)
  8. {
  9.     fprintf(stderr,
  10.             "Assertion failed: %s, file %s, line %ld\n",
  11.             cond,fname,lineno);
  12.     abort();
  13. }
  14.  
  15.